.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


.topbar .top-info {
    letter-spacing: 1px;
    
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 8s linear infinite;
    animation-timing-function: all;
    color: #d1d405;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.menu-sec {
  background: linear-gradient( to right, #0f0f3b 0, #000007 100%);
  border-top: 1px solid #f953c6 !important;
  border-bottom: 1px solid #f953c6 !important;
  box-shadow: 0 0 5px #f953c6;
  width: 100%;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-sec {
  background: linear-gradient( to right, #0f0f3b 0, #000007 100%);
  border-top: 1px solid #f953c6 !important;
  border-bottom: 1px solid #f953c6 !important;
  box-shadow: 0 0 5px #f953c6;
  width: 100%;
  padding: 0; 
  position: relative;
  z-index: 1000;
}

.menu li {
   padding: 15px 15px;
  border-left: 1px solid #f953c6;
  display: flex;
}

.menu li:first-child {
  border-left: none;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu li a:hover {
  background: linear-gradient(to right, #f953c6, #b91d73);
  border-left-color: #fff; 
  border-right-color: #fff;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  padding: 10px;
  border: 1px solid #f953c6;
  border-radius: 6px;
}

.navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  width: 18px;
}

.navicon:before,
.navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  width: 18px;
  transition: all 0.3s ease;
}

.navicon:before {
  top: -6px;
}

.navicon:after {
  top: 6px;
}

.menu-btn:checked + .menu-icon .navicon {
  background: transparent;
}

.menu-btn:checked + .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked + .menu-icon .navicon:after {
  transform: rotate(45deg);
  top: 0;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    width: 100%;
    display: none;
    background: linear-gradient( to right, #0f0f3b 0, #000007 100%);
    padding: 10px 0;
  }

  .menu li {
    border-left: none;
    border-bottom: 1px solid #f953c6;
    text-align: center;
  }

  .menu li:last-child {
    border-bottom:none;
  }

  .menu-btn:checked ~ .menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

}

.call-btn {
  display: inline-block;
  background: linear-gradient(135deg, #854773, #96185d); /* Gradient pink */
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(249, 83, 198, 0.5);
  white-space: nowrap;
  border: none;
}

.call-btn:hover {
  background: linear-gradient(135deg, #d43f8d, #7e1354); /* Darker gradient on hover */
  box-shadow: 0 4px 12px rgba(213, 58, 155, 0.7);
}

@media (max-width: 768px) {
  .call-btn {
    margin: 10px 0; /* adds space above & below the button */
    display: block;
  }
}


.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: 0.6s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: linear-gradient(135deg, #7bda22, #00c9a7);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}


#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
    
}


@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: fill;
   }

    .carousel-item h1 {
        font-size: 20px !important;
    }
    
    .carousel-item h2 {
        font-size: 20px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}
.carousel-item.dark-overlay {
  position: relative;
  overflow: hidden;
}

.carousel-item.dark-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust the opacity as needed */
  z-index: 1;
}


.page-header {
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}
@media (min-width: 993px) {
  .carousel-item img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
}

.fancy-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
  }

  .fancy-underline::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, transparent, #ff2d75, transparent);
    clip-path: polygon(0 50%, 5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%);
  }


.escort-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.escort-card:hover {
  transform: translateY(-5px);
}

.escort-card .available {
  position: absolute;
  top: 0;
  left: 0;
  background: #28a745;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-bottom-right-radius: 8px;
}

.escort-card figure {
  margin: 0;
  height: 380px;
  overflow: hidden;
}

.escort-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.escort_content {
  padding: 1rem;
  text-align: center;
}

.escort_content .name {
  font-weight: bold;
  font-size: 1.2rem;
}

.escort_content .type {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.rating i {
  color: #f1c40f;
}

@media (max-width: 576px) {
  .escort_content .name {
    font-size: 1rem;
  }

  .escort_content .type {
    font-size: 0.85rem;
  }
}

.escort_content {
  background: rgba(0, 0, 0, 0.6); /* semi-dark with transparency */
  backdrop-filter: blur(10px); /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  color: #fff;
  padding: 16px;
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.escort-card:hover .escort_content {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
}

.escort_content .name {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.escort_content .type {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

.escort_content .rating .star,
.escort_content .rating .half_star {
  color: gold;
  font-size: 16px;
}

.available {
  position: absolute;
  top: 10px;
  left: 10px;
 background: rgba(0, 255, 100, 0.4);
  color: #00ff7f;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 1px solid #00ff7f;
  box-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f;
  animation: pulseGlow 1.2s infinite ease-in-out; /* faster */
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px #00ff7f, 0 0 30px #00ff7f;
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f;
    transform: scale(1);
  }
}

.static-gradient-bg {
  background: linear-gradient(to right, #060610, #0a0c2a, #0d1b3f);
  color: #fff;
}

.video-card video {
  filter: blur(0px);
}

.pop-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  color: #000; /* Black text for better contrast */
  font-size: 16px;
  width: 100%;
  max-width: 1110px;
  padding: 12px 20px;
  margin: 30px auto;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 217, 245, 0.4);
}

.pop-button:hover {
  background: linear-gradient(135deg, #00e0d1, #00c3a5);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 195, 165, 0.5);
}

.pop-button i {
  font-size: 18px;
}

@media (max-width: 576px) {
  .pop-button {
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 40px;
  }

  .pop-button i {
    font-size: 16px;
  }
}

.profile-box {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f9c5d1 0%, #9795ef 100%);
  border: 4px solid #ff7adb;
  border-radius: 100px;
  padding: 25px 35px;
  box-shadow: 0 8px 20px rgba(128, 0, 128, 0.3);
  max-width: 100%;
  gap: 25px;
  margin: 20px auto;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.profile-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(186, 22, 192, 0.6), 0 0 60px rgba(255, 122, 219, 0.3);
}

.profile-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #000;
  background: #fff;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease;
}

.profile-img img:hover {
  transform: scale(1.1);
  border-color: #ff7adb;
  box-shadow: 0 0 15px rgba(255, 0, 144, 0.4);
}

.profile-info {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  padding: 15px 20px;
  border-radius: 25px;
}

.profile-name {
  font-size: 1.6rem;
  color: #4c0070;
  margin-bottom: 10px;
}

.profile-bio {
  font-size: 15px;
  color: #2c2c2c;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 15px;
}

.profile-buttons .btn {
  display: inline-block;
  margin-right: 10px;
  padding: 9px 18px;
  font-size: 14px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.profile-buttons .btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn.call {
  background: linear-gradient(45deg, #000, #434343);
}

.btn.call:hover {
  background: #222;
}

.btn.whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.btn.whatsapp:hover {
  background: #1ebe5a;
}

@media (max-width: 768px) {
  .profile-box {
    flex-direction: column;
    text-align: center;
    border-radius: 40px;
  }

  .profile-img img {
    margin-bottom: 15px;
  }

  .profile-buttons .btn {
    margin-bottom: 10px;
  }

  .profile-info {
    padding: 10px 15px;
  }
}

.glassy-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffffff; /* Solid white border */
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(8, 8, 8, 0.3);
  padding: 2rem;
}


.glass-effect {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(7, 7, 7, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

@keyframes continuousBlinkGlow {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #ff00ff) drop-shadow(0 0 15px #ff00ff);
  }
  50% {
    opacity: 0.6;
    filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 4px #ff00ff) drop-shadow(0 0 6px #ff00ff);
  }
}

.glow-blink-image img {
  animation: continuousBlinkGlow 2s infinite ease-in-out;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.hover-effect {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hover-effect:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px #ff00ff);
}

.glow-border {
  display: inline-block;
  padding: 4px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(to right, #ff00cc, #3333ff, #00ffff);
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.5), 0 0 18px rgba(0, 255, 255, 0.3);
  width: 100%;
  height: auto; /* Set a fixed height for consistency */
  overflow: hidden; /* Prevent image overflow */
}

.inner-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the container */
  border-radius: 12px 12px 0 0;
}

.glass-profile-grid {
  display: grid;
  grid-template-columns: 1fr;   /* mobile default */
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .glass-profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .glass-profile-grid {
    grid-template-columns: repeat(4, 1fr); /* desktop */
  }
}

.glass-profile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.glass-profile:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.glass-profile img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.glass-profile p {
  font-size: 18px;
  font-weight: 500;
  color: #fcf6fb;
  margin: 0;
}

.badge {
  background-color: #e91e63;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}

.image-wrapper {
  position: relative;
  width: 100%;
}

.verified-text {
  position: absolute;
  top: 2px;
  left: 1px;
  background: #00c6ff; /* Aqua-blue background */
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.table thead th {
    background-color: 	#bd0140d5 !important; 
    color: white;
    border: 1px solid white !important;
  }

 
  .table td, .table th {
    border: 1px solid white !important;
  }

  
  .table tbody tr td {
    background-color: #070000; 
    color: white;
  }


  .btn-success {
    background-color: #ff5e00;
    border: none;
    font-weight: bold;
  }


  .service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px;
}

.service-buttons a {
  background-color: #ff3366;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 15px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.service-buttons a:hover {
  background-color: #c92c52;
}

.faq-section {
  background: linear-gradient(to right, #060610, #0a0c2a, #0d1b3f);
  color: #fff;
  padding: 60px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: #c92c52;
  overflow: hidden;
}

.faq-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  transition: background 0.3s;
}

.faq-toggle::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s;
}

.faq-toggle.active::after {
  content: '–';
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}


.faq-content.open {
  padding: 15px 20px 20px;
  max-height: 500px; 
}


.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  text-align: center;
  color: #fff;
  backdrop-filter: blur(10px);
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: rgb(241, 208, 61);
 
  
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  width: 100%;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}


.profile-pic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #fff;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #f1f1f1;
  margin-bottom: 18px;
}

.author-info {
  font-size: 14px;
  color: #e0e0e0;
}

.author-name {
  display: block;
  font-weight: 600;
  color: #fff;
}

.author-title {
  font-size: 13px;
  color: #ccc;
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
  }
}

.chennai-footer {
  background: linear-gradient(to right, #060610, #0a0c2a, #0d1b3f);
  color: #f5f5f5;
  padding: 3rem 0 1.5rem;
  font-size: 13px;
  position: relative;
   border: 1px solid #f9f8fa;
   border-radius: 10px;
}

.chennai-footer a {
  color: #ddd;
  text-decoration: none;
}

.chennai-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.f_heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: rgb(241, 208, 61);
}

.footer-grids ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.footer-grids ul li {
  margin-bottom: 8px;
}

.chennai-footer p {
  margin-bottom: 10px;
}

.social a {
  display: inline-block;
  margin-right: 10px;
}

.social img {
  vertical-align: middle;
}

.copyright {
  background: #000;
  text-align: center;
  color: #ffffff;
  padding: 10px 0;
  font-size: 15px;
}
.copyright a {
  text-decoration: underline; 
  font-weight: 500;           
}

.copyright a:hover,
.copyright a:focus {
  color: #ffd700;             
}

.custom-home-btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ff004f, #6a00ff);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
  }

.custom-home-btn:hover {
    background: linear-gradient(135deg, #6a00ff, #ff004f);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
  }


/* videosection */
.video-section {
  background: linear-gradient(to right, #060610, #0a0c2a, #0d1b3f);
  padding: 50px 0; /* Adjust vertical spacing as needed */
}

/* Inner video container */
.video-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40%; /* Controls video height */
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(to right, #060610, #0a0c2a, #0d1b3f); /* fallback if video doesn't load */
}

/* Glassy border effect */
.glassy-border {
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Video style */
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .video-container {
    width: 95%; /* Increase from 90% to 95% width */
    padding-top: 55%; /* Slightly taller on mobile for better view */
  }
}




























